type golang.org/x/tools/internal/gcimporter.byPath

6 uses

	golang.org/x/tools/internal/gcimporter (current package)
		bimport.go#L161: 	sort.Sort(byPath(list))
		gcimporter.go#L261: type byPath []*types.Package
		gcimporter.go#L263: func (a byPath) Len() int           { return len(a) }
		gcimporter.go#L264: func (a byPath) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
		gcimporter.go#L265: func (a byPath) Less(i, j int) bool { return a[i].Path() < a[j].Path() }
		iimport.go#L245: 		sort.Sort(byPath(list))